home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 April: Mac OS SDK / Dev.CD Apr 97 SDK1.toast / Development Kits (Disc 1) / Apple Remote Access API / ARA Security API 1.0 / SecurityInterfaces / SecurityResInfo.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-11-04  |  860 b   |  35 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:    SecurityResInfo.h
  3.  
  4.     This file contains the declarations that are used by both Apple Remote
  5.     Access security modules and their resources.
  6.  
  7.     Copyright © 1992, 1993 Apple Computer Inc.
  8.     All rights reserved
  9.  
  10.     Author:  Farzad Sarabi
  11.  
  12.     Modification history:
  13.  
  14.     11/12/1992        Farzad        Created
  15.  
  16. */
  17.  
  18. #ifndef SECURITY_RES_INFO
  19. #define SECURITY_RES_INFO 1
  20.  
  21.  
  22. // the following flags are used in an add-on security module's info
  23. // resource to specify its characteristics
  24.  
  25. #define kSecurityHasLineLevel            1
  26. #define kSecurityHasProtocolLevel        2
  27. #define kSecurityHasServerSide            4
  28. #define kSecurityHasClientSide            8
  29. #define kSecurityHasUserConfig            16    // supports user configuration
  30. #define kSecurityHasConnectionConfig    32    // supports connection configuration
  31. #define kSecurityHasUserDialog            64
  32. #define kSecurityHasConnectionDialog     128
  33.  
  34.  
  35. #endif /* SECURITY_RES_INFO */